home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / SEARCH / RUBICON / RUBICON.ZIP / RUBICON.PAS < prev    next >
Pascal/Delphi Source File  |  1996-10-22  |  1KB  |  37 lines

  1. {*********************************************************}
  2. {*             RUBICON.PAS 1.12             *}
  3. {*      Copyright (c) Tamarack Associates 1996.     *}
  4. {*           All rights reserved.          *}
  5. {*********************************************************}
  6.  
  7. UNIT Rubicon;
  8.  
  9. INTERFACE
  10.  
  11. USES      Classes, SysUtils, Consts, DsgnIntf, taREdit, taRubicn, rbPhase, rbUpdate;
  12.  
  13. PROCEDURE Register;
  14.  
  15. IMPLEMENTATION
  16.  
  17. PROCEDURE Register;
  18. BEGIN
  19.   RegisterComponents('Rubicon', [TMakeDictionary,TUpdateDictionary,
  20.                                  TSearchDictionary,TMakeProgress,
  21.                                  TUpdateTable,TUpdateStats]);
  22.   RegisterPropertyEditor(TypeInfo(CHAR),TSearchDictionary,'AnyChar',
  23.              TtaWildCardProperty);
  24.   RegisterPropertyEditor(TypeInfo(TStrings),TAbstractDictionary,'FieldNames',
  25.              TFieldNamesProperty);
  26.   RegisterPropertyEditor(TypeInfo(STRING),TAbstractDictionary,'IndexFieldName',
  27.              TtaIndexFieldNameProperty);
  28.   RegisterPropertyEditor(TypeInfo(CHAR),TSearchDictionary,'OneChar',
  29.              TtaWildCardProperty);
  30.   RegisterPropertyEditor(TypeInfo(TStrings),TAbstractDictionary,'SubFieldNames',
  31.              TSubFieldNamesProperty);
  32.   RegisterPropertyEditor(TypeInfo(STRING),TAbstractDictionary,'WordDelims',
  33.              TtaWordDelimsProperty);
  34. END;
  35.  
  36. END.
  37.